-- XSD schema extracted from ITU-T H.627 (08/2020)

<?xml version="1.0" encoding="utf-8"?> <schema xmlns="http://www.w3.org/2001/XMLSchema"> <choice maxOccurs="unbounded"> <element name="Response"> <complexType> <sequence> <!-- The query request response message is shown as follows.--> <!-- Command type: file directory query (required) --> <element name="CmdType" fixed=" RecordInfo "/> <!-- Command SN (required) --> <element name="SN" type="integer" minInclusive="1"/> <!-- Device/VSS ID (required) --> <element name="DeviceID" type="deviceIDType"/> <!-- Device/VSS name (required) --> <element name="Name" type="string"/> <!-- Total of query results (required) --> <element name="SumNum " type="integer"/> <!-- File directory item list, Num shows the number of the directory items.--> <element name="RecordList"> <complexType> <choice minOccurs="0" maxOccurs="unbounded"> <element name="Item" type="itemFileType"/> </choice> <attribute name="Num" type="integer"/> </complexType> </element> <!--Extended information, multiple --> <element name="Info" minOccurs="0" maxOccurs="unbounded"> <restriction base="string"> <maxLength value="1024"/> </restriction> </element> </sequence> </complexType> </element> </choice> </schema>